home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / MAILFOR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  906 b   |  43 lines

  1. /* Include needed for extended bbs support - WG7J */
  2. #ifndef _MAILFOR_H
  3. #define _MAILFOR_H
  4.  
  5. #ifndef _AX25_H
  6. #include "ax25.h"
  7. #endif
  8.  
  9. int domftimer (int argc,char *argv[],void *p);
  10.  
  11. /*List of bbses we forward to, to check the R: lines for */
  12. #define FWDBBSLEN 9 /* call + optional ssid, eg. "KB7BHF-15" */
  13. #define NUMFWDBBS 32 /* Check for 32 bbs's max (arbitrary !) */
  14.  
  15. /* In mailfor.c */
  16. extern int Numfwds;
  17. extern int Rreturn;
  18. extern int Rfwdcheck;
  19. extern int Rdate;
  20.  
  21. /* List of area names to exclude from mail-for beacon */
  22. struct no_mf {
  23.     struct no_mf *next;
  24.     char area[20];
  25. };
  26. #define NULLMF (struct no_mf *)0
  27.  
  28.  
  29. #ifdef ALERTMONITOR
  30. /* List of area names to monitor for incoming mail */
  31. struct mfalert {
  32.     struct mfalert     *next;
  33.     char         area[20];
  34. };
  35.  
  36. #define NULLMFA (struct mfalert *)0
  37.  
  38. void alertarea (char *area);
  39.  
  40. #endif
  41.  
  42. #endif /*_MAILFOR_H*/
  43.